﻿/* Temel stil ayarları */
:root {
    --brand-navy: #0a1d37;
    --brand-gold: var(--brand-primary); /* Backward compatibility */
    --brand-primary: #EC1C24;
    --brand-dark: #6F0000;
    --brand-accent: #F27F96;
    --brand-white: #ffffff;
    --brand-gray: #909090;
    --brand-light: #f4f4f4;
    --text: #1b2433;
}

/* ===== Scrollbar Stilleri ===== */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #2a0000;
}

::-webkit-scrollbar-thumb {
    background: #6F0000;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #8B0000;
}

* {
    scrollbar-color: #6F0000 #2a0000;
    scrollbar-width: thin;
}


* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    color: var(--text);
    background: #f0efeb;
    line-height: 1.6;
}

.page-transition {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0;
}

.page-transition-bar {
    flex: 1 1 50%;
    transform: translateY(-102%);
    opacity: 0;
    transition: transform 0.55s cubic-bezier(0.22, 0.86, 0.36, 0.99), opacity 0.5s ease;
    background: rgba(var(--brand-navy-rgb), 0.85);
}

.page-transition-bar--top {
    background: linear-gradient(135deg, rgba(var(--brand-navy-rgb), 0.95) 0%, rgba(var(--brand-navy-rgb), 0.65) 60%, rgba(var(--brand-gold-rgb), 0.35) 100%);
    box-shadow: 0 18px 34px rgba(var(--brand-navy-rgb), 0.28);
}

.page-transition-bar--bottom {
    background: linear-gradient(135deg, rgba(var(--brand-gold-rgb), 0.85) 0%, rgba(var(--brand-gold-rgb), 0.65) 60%, rgba(var(--brand-navy-rgb), 0.35) 100%);
    transform: translateY(102%);
    box-shadow: 0 -18px 34px rgba(var(--brand-navy-rgb), 0.22);
    --transition-delay: 0.05s;
}

.page-transition-bar {
    transition-delay: var(--transition-delay, 0s);
}

.page-transition.is-intro .page-transition-bar,
.page-transition.is-active .page-transition-bar {
    transform: translateY(0);
    opacity: 1;
}

.page-transition.is-intro .page-transition-bar--bottom,
.page-transition.is-active .page-transition-bar--bottom {
    --transition-delay: 0.12s;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Reveal Animations */
body:not(.js-enabled) [data-animate] {
    opacity: 1;
    transform: none;
}

[data-animate] {
    opacity: 0;
    transform: translate3d(0, 26px, 0);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
}

[data-animate="fade-up"] {
    transform: translate3d(0, 32px, 0);
}

[data-animate="fade-down"] {
    transform: translate3d(0, -32px, 0);
}

[data-animate="fade-left"] {
    transform: translate3d(32px, 0, 0);
}

[data-animate="fade-right"] {
    transform: translate3d(-32px, 0, 0);
}

[data-animate="zoom-in"] {
    transform: scale(0.92);
}

[data-animate].animate-in {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

[data-animate="zoom-in"].animate-in {
    transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
    [data-animate] {
        transition: none;
        opacity: 1;
        transform: none !important;
    }
}

.container {
    width: min(1200px, calc(100% - 3rem));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 45px rgba(10, 29, 55, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    min-height: 96px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.brand-logo {
    height: clamp(42px, 8vw, 58px);
    width: auto;
    display: block;
}

/* ===== Mobil Menü Butonu ===== */
.menu-toggle {
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    border: 1.5px solid rgba(10, 29, 55, 0.12);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fb 100%);
    box-shadow: 0 4px 16px rgba(10, 29, 55, 0.10),
                0 1px 3px rgba(10, 29, 55, 0.06);
    cursor: pointer;
    transition: all 0.25s ease;
}

.menu-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(10, 29, 55, 0.15),
                0 2px 6px rgba(10, 29, 55, 0.08);
    border-color: var(--brand-primary);
}

.menu-toggle:active {
    transform: translateY(0);
}

.menu-toggle .menu-label {
    display: inline-block;
    color: var(--brand-navy);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.menu-toggle .menu-caret {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
    box-shadow: 0 2px 8px rgba(212, 160, 23, 0.35);
    position: relative;
    transition: transform 0.3s ease, background 0.25s ease;
}

.menu-toggle .menu-caret::before {
    content: "";
    width: 5px;
    height: 5px;
    border-right: 1.5px solid var(--brand-navy);
    border-bottom: 1.5px solid var(--brand-navy);
    transform: rotate(45deg) translateY(-1px);
    transition: transform 0.3s ease;
}

/* Menü açıkken caret ters dönecek */
body.nav-open .menu-toggle .menu-caret::before {
    transform: rotate(-135deg) translateY(1px);
}

.primary-nav {
    margin-left: auto;
}

.nav-surface {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(10, 29, 55, 0.1);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 32px 60px rgba(6, 14, 28, 0.2);
}

.primary-nav ul {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

body.nav-open {
    overflow: hidden;
}

.nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(5, 15, 30, 0.6);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    display: none;
    z-index: 18;
}

body.nav-open .nav-backdrop {
    opacity: 1;
    pointer-events: auto;
}

.nav-indicator {
    position: absolute;
    top: 50%;
    left: 0;
    width: 0;
    height: 42px;
    border-radius: 999px;
    background: linear-gradient(120deg, rgba(212, 160, 23, 0.95), rgba(255, 242, 209, 0.9));
    box-shadow: 0 15px 30px rgba(212, 160, 23, 0.4);
    transform: translateY(-50%);
    opacity: 0;
    pointer-events: none;
    z-index: 0;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--brand-gray);
    min-width: 92px;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-size: 0.88rem;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-link svg {
    margin-left: 0.35rem;
    transition: transform 0.25s ease;
}

.nav-trigger {
    border: none;
    background: transparent;
    cursor: pointer;
}

.has-dropdown {
    position: relative;
}

.has-dropdown.dropdown-open .nav-trigger svg,
.has-dropdown:focus-within .nav-trigger svg {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    min-width: 240px;
    border-radius: 20px;
    border: 1px solid rgba(212, 160, 23, 0.15);
    box-shadow: 0 32px 80px rgba(6, 14, 28, 0.35), 0 0 0 1px rgba(212, 160, 23, 0.08);
    background: linear-gradient(145deg, var(--brand-white) 0%, rgba(248, 250, 252, 0.98) 100%);
    backdrop-filter: blur(24px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px) scale(0.95);
    z-index: 20;
    overflow: hidden;
}

.has-dropdown.dropdown-open > .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-dropdown::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 36px;
    width: 20px;
    height: 20px;
    background: linear-gradient(145deg, var(--brand-white) 0%, rgba(248, 250, 252, 0.98) 100%);
    transform: rotate(45deg);
    border: 1px solid rgba(212, 160, 23, 0.15);
    border-bottom: none;
    border-right: none;
    box-shadow: -2px -2px 8px rgba(6, 14, 28, 0.15);
}

.nav-dropdown-inner {
    position: relative;
    padding: 1.2rem 1.5rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
}

.nav-dropdown ul {
    list-style: none;
    display: grid;
    gap: 0.5rem;
}

.dropdown-link {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 0.95rem 1.2rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(10, 29, 55, 0.03) 0%, rgba(212, 160, 23, 0.02) 100%);
    color: var(--brand-navy);
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: all 0.25s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.dropdown-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 160, 23, 0.08), transparent);
    transition: left 0.5s ease;
}

.dropdown-link:hover::before,
.dropdown-link:focus-visible::before,
.dropdown-link.active::before {
    left: 100%;
}
.dropdown-link:hover,
.dropdown-link:focus-visible,
.dropdown-link.active {
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.12) 0%, rgba(10, 29, 55, 0.08) 100%);
    color: var(--brand-navy);
    transform: none;
    box-shadow: 0 10px 24px rgba(111, 0, 0, 0.18);
    border-color: rgba(212, 160, 23, 0.2);
}



.dropdown-link .dropdown-arrow {
    justify-self: end;
    font-size: 1.1rem;
    color: var(--brand-primary);
    transition: transform 0.2s ease, color 0.2s ease;
}

/* ===== Referanslar Sayfası ===== */
.references-hero {
    position: relative;
    padding: clamp(6rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 6rem);
    background: linear-gradient(135deg, rgba(10, 29, 55, 0.95), rgba(10, 29, 55, 0.7)), url('https://images.unsplash.com/photo-1483478550801-ceba5fe50e8e?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
    color: var(--brand-white);
    overflow: hidden;
}

.references-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(10, 29, 55, 0.7) 0%, rgba(10, 29, 55, 0.2) 100%);
    mix-blend-mode: lighten;
}

.references-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.references-hero-meta {
    max-width: 640px;
}

.references-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.15);
    letter-spacing: 0.16em;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
}

.references-hero h1 {
    font-size: clamp(2.4rem, 4vw, 3.1rem);
    font-weight: 700;
    line-height: 1.15;
    margin: 1.35rem 0 1rem;
}

.references-hero p {
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.05rem;
}

.references-hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.references-hero-stats li {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 1.6rem 1.4rem;
    display: grid;
    gap: 0.3rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 20px 45px rgba(7, 16, 32, 0.25);
}

.references-hero-stats li span {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
}

.references-hero-stats li small {
    font-size: 0.86rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.references-overview {
    padding: clamp(4.5rem, 8vw, 6rem) 0;
    background: var(--brand-white);
}

.references-overview-inner {
    display: grid;
    gap: clamp(2.5rem, 5vw, 4rem);
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: center;
}

.references-overview-content h2 {
    font-size: clamp(1.9rem, 3vw, 2.4rem);
    margin-bottom: 1.2rem;
}

.references-overview-content p {
    margin-bottom: 1.5rem;
    color: rgba(27, 36, 51, 0.72);
}

.references-overview-points {
    display: grid;
    gap: 1rem;
}

.overview-point {
    padding: 1.4rem 1.6rem;
    border-radius: 18px;
    border: 1px solid rgba(10, 29, 55, 0.08);
    background: linear-gradient(135deg, rgba(10, 29, 55, 0.03) 0%, rgba(212, 160, 23, 0.05) 100%);
    box-shadow: 0 18px 40px rgba(12, 23, 42, 0.08);
}

.overview-point h3 {
    margin: 0 0 0.8rem;
    font-size: 1.1rem;
    color: var(--brand-navy);
}

.overview-point p {
    margin: 0;
    color: rgba(27, 36, 51, 0.68);
}

.references-overview-visual {
    position: relative;
    min-height: 320px;
}

.references-overview-visual-inner {
    position: absolute;
    inset: 0;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(10, 29, 55, 0.9), rgba(212, 160, 23, 0.55)), url('https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
    box-shadow: 0 35px 80px rgba(10, 29, 55, 0.35);
}

.references-grid-section {
    padding: clamp(4.5rem, 8vw, 6.5rem) 0;
    background: var(--brand-light);
}

.references-grid-inner {
    display: grid;
    gap: 2.8rem;
}

.references-grid-header {
    max-width: 700px;
}

.references-grid-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(10, 29, 55, 0.06);
    border: 1px solid rgba(10, 29, 55, 0.08);
    letter-spacing: 0.16em;
    font-size: 0.72rem;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--brand-navy);
}

.references-grid-header h2 {
    margin: 1.2rem 0 1rem;
    font-size: clamp(1.9rem, 3vw, 2.4rem);
}

.references-grid-header p {
    margin: 0;
    color: rgba(27, 36, 51, 0.7);
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
}

.references-empty {
    grid-column: 1 / -1;
    padding: 2.4rem;
    text-align: center;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(10, 29, 55, 0.06), rgba(212, 160, 23, 0.1));
    border: 1px solid rgba(10, 29, 55, 0.08);
    color: rgba(27, 36, 51, 0.7);
    font-weight: 500;
}

.reference-card {
    background: var(--brand-white);
    border-radius: 20px;
    border: 1px solid rgba(10, 29, 55, 0.08);
    box-shadow: 0 24px 40px rgba(10, 29, 55, 0.08);
    overflow: hidden;
    display: grid;
    gap: 0;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.reference-card:hover,
.reference-card:focus-within {
    transform: translateY(-6px);
    box-shadow: 0 36px 70px rgba(10, 29, 55, 0.15);
}

.reference-logo {
    padding: 1.8rem 1.6rem 0.6rem;
    background: linear-gradient(135deg, rgba(10, 29, 55, 0.04), rgba(212, 160, 23, 0.1));
}

.reference-logo img {
    max-height: 54px;
    margin: 0 auto;
    filter: drop-shadow(0 6px 12px rgba(10, 29, 55, 0.15));
}

.reference-content {
    padding: 1.6rem;
    display: grid;
    gap: 0.6rem;
}

.reference-sector {
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(27, 36, 51, 0.55);
    font-weight: 600;
}

.reference-content h3 {
    margin: 0;
    font-size: 1.3rem;
    color: var(--brand-navy);
}

.reference-content p {
    margin: 0;
    color: rgba(27, 36, 51, 0.68);
}

.references-cta {
    padding: clamp(4rem, 8vw, 5.5rem) 0 clamp(5rem, 9vw, 6.5rem);
    background: linear-gradient(140deg, rgba(10, 29, 55, 0.95), rgba(10, 29, 55, 0.82));
    color: var(--brand-white);
}

.references-cta-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    align-items: center;
    padding: clamp(2.5rem, 6vw, 3.4rem);
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(10, 29, 55, 0.85), rgba(212, 160, 23, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 45px 90px rgba(7, 16, 32, 0.35);
}

.references-cta h2 {
    font-size: clamp(1.9rem, 3vw, 2.4rem);
    margin-bottom: 0.8rem;
}

.references-cta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
}

.references-cta-button {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 2.5rem;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
    color: var(--brand-navy);
    box-shadow: 0 18px 40px rgba(111, 0, 0, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.references-cta-button:hover,
.references-cta-button:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 28px 60px rgba(111, 0, 0, 0.45);
}

@media (max-width: 768px) {
    .references-hero {
        padding-top: 5rem;
    }

    .references-hero-stats li {
        padding: 1.3rem 1.2rem;
    }

    .references-cta-inner {
        padding: 2.2rem;
    }

    .references-cta-button {
        width: 100%;
        justify-self: stretch;
    }
}

@media (max-width: 600px) {
    .references-overview-visual {
        min-height: 240px;
    }

    .references-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Tarihçe Sayfası ===== */
.history-hero {
    position: relative;
    padding: clamp(6.5rem, 10vw, 8.5rem) 0 clamp(4.5rem, 9vw, 6.5rem);
    background: linear-gradient(128deg, rgba(10, 29, 55, 0.96), rgba(10, 29, 55, 0.78)), url('https://images.unsplash.com/photo-1450101215322-bf5cd27642fc?auto=format&fit=crop&w=1500&q=80') center/cover no-repeat;
    color: var(--brand-white);
}

.history-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(10, 29, 55, 0.85) 0%, rgba(10, 29, 55, 0.5) 100%);
}

.history-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    gap: clamp(2.5rem, 5vw, 3.5rem);
}

.history-hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(2.4rem, 5vw, 3.4rem);
    align-items: center;
}

.history-hero-content {
    max-width: 700px;
}

.history-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
}

.history-hero h1 {
    margin: 1.35rem 0 1rem;
    font-size: clamp(2.3rem, 4vw, 3.2rem);
    line-height: 1.12;
}

.history-hero p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.08rem;
}

.history-hero-note {
    margin-top: 1.5rem;
    padding: 1.4rem 1.6rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: 0 18px 36px rgba(7, 16, 32, 0.35);
    display: grid;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.86);
}

.history-hero-period {
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.72);
}

.history-hero-visual {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: radial-gradient(circle at top right, rgba(212, 160, 23, 0.35), transparent 54%), rgba(255, 255, 255, 0.08);
    box-shadow: 0 40px 80px rgba(7, 16, 32, 0.45);
}

.history-hero-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(10, 29, 55, 0.85), rgba(10, 29, 55, 0.65));
    mix-blend-mode: multiply;
}

.history-hero-visual-inner {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.8rem;
    padding: clamp(2.4rem, 4vw, 3rem);
}

.history-visual-era {
    align-self: start;
    padding: 0.32rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.24);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.68rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.78);
}

.history-hero-visual h2 {
    margin: 0;
    font-size: clamp(1.45rem, 2.6vw, 1.9rem);
    color: var(--brand-white);
}

.history-hero-visual p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
}

.history-visual-year {
    justify-self: start;
    margin-top: 0.4rem;
    padding: 0.45rem 1.2rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
    color: var(--brand-navy);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.history-hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.4rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.history-hero-stats li {
    padding: 1.8rem 1.6rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(16px);
    display: grid;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.86);
}

.history-stat-value {
    font-size: clamp(1.9rem, 3vw, 2.4rem);
    font-weight: 700;
}

.history-stat-label {
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.history-hero-stats p {
    margin: 0;
    font-size: 0.95rem;
}

.history-era-nav {
    padding: clamp(2rem, 4vw, 2.8rem) 0;
    background: linear-gradient(135deg, rgba(10, 29, 55, 0.08), rgba(212, 160, 23, 0.06));
    border-bottom: 1px solid rgba(10, 29, 55, 0.08);
}

.history-era-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.history-era-nav-link {
    display: grid;
    gap: 0.35rem;
    padding: 1.15rem 1.4rem;
    border-radius: 18px;
    border: 1px solid rgba(10, 29, 55, 0.12);
    background: rgba(255, 255, 255, 0.28);
    color: var(--brand-navy);
    font-weight: 600;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}

.history-era-nav-link::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(212, 160, 23, 0.18), rgba(10, 29, 55, 0.1));
    opacity: 0;
    transition: opacity 0.25s ease;
}

.history-era-nav-link:hover::after,
.history-era-nav-link:focus-visible::after {
    opacity: 1;
}

.history-era-nav-link:hover,
.history-era-nav-link:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px rgba(10, 29, 55, 0.18);
}

.history-era-nav-period {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
    color: rgba(10, 29, 55, 0.58);
}

.history-era-nav-title {
    font-size: 1.05rem;
}

.history-timeline {
    padding: clamp(4.8rem, 8vw, 6.8rem) 0;
    background: var(--brand-white);
}

.history-timeline-inner {
    position: relative;
    display: grid;
    gap: clamp(2.8rem, 6vw, 3.6rem);
}

.history-timeline-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 1fr);
    gap: clamp(1.8rem, 4vw, 3rem);
    align-items: stretch;
}

.history-timeline-title {
    display: grid;
    gap: 0.8rem;
    max-width: 620px;
}

.history-timeline-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    background: rgba(10, 29, 55, 0.06);
    border: 1px solid rgba(10, 29, 55, 0.08);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--brand-navy);
}

.history-timeline-header h2 {
    margin: 1.2rem 0 1rem;
    font-size: clamp(1.9rem, 3vw, 2.4rem);
}

.history-timeline-header p {
    margin: 0;
    color: rgba(27, 36, 51, 0.72);
}

.history-timeline-highlight {
    position: relative;
    border-radius: 28px;
    padding: clamp(1.8rem, 4vw, 2.4rem);
    background: linear-gradient(140deg, rgba(10, 29, 55, 0.92), rgba(10, 29, 55, 0.78));
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 35px 70px rgba(7, 16, 32, 0.35);
    display: grid;
    gap: 1.2rem;
    color: var(--brand-white);
    overflow: hidden;
}

.history-timeline-highlight::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(212, 160, 23, 0.28), transparent 60%);
    pointer-events: none;
}

.history-timeline-highlight-meta {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.history-timeline-range {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.78);
}

.history-timeline-pulse {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--brand-primary);
    box-shadow: 0 0 0 0 rgba(212, 160, 23, 0.4);
    animation: timelinePulse 2.6s ease-in-out infinite;
}

.history-timeline-highlight-body {
    position: relative;
    display: grid;
    gap: 0.6rem;
}

.history-timeline-highlight-body h3 {
    margin: 0;
    font-size: 1.12rem;
    color: var(--brand-white);
}

.history-timeline-highlight-body p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
}

.history-timeline-highlight-year {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
    color: var(--brand-navy);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: 0 18px 36px rgba(111, 0, 0, 0.45);
}

@keyframes timelinePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 160, 23, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(212, 160, 23, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 160, 23, 0);
    }
}

.history-timeline-track {
    position: absolute;
    left: 34px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, rgba(10, 29, 55, 0.22) 0%, rgba(212, 160, 23, 0.35) 100%);
}

.history-timeline-grid {
    position: relative;
    display: grid;
    gap: 2.6rem;
}

.history-era {
    position: relative;
    margin-left: 68px;
    padding: 2.2rem 2.4rem;
    border-radius: 28px;
    border: 1px solid rgba(10, 29, 55, 0.08);
    background: linear-gradient(135deg, rgba(10, 29, 55, 0.03) 0%, rgba(212, 160, 23, 0.08) 100%);
    box-shadow: 0 24px 56px rgba(10, 29, 55, 0.1);
}

.history-era-right {
    margin-left: 110px;
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.08) 0%, rgba(10, 29, 55, 0.04) 100%);
}

.history-era::before {
    content: "";
    position: absolute;
    left: -42px;
    top: 34px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--brand-primary);
    box-shadow: 0 0 0 8px rgba(212, 160, 23, 0.18);
}

.history-era-right::before {
    left: -84px;
}

.history-era-header {
    display: grid;
    gap: 0.6rem;
    margin-bottom: 1.4rem;
}

.history-era-period {
    font-size: 0.85rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(10, 29, 55, 0.6);
    font-weight: 600;
}

.history-era-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--brand-navy);
}

.history-era-header p {
    margin: 0;
    color: rgba(27, 36, 51, 0.72);
}

.history-era-milestones {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1.2rem;
}

.history-era-milestones li {
    display: grid;
    grid-template-columns: minmax(88px, auto) 1fr;
    gap: 1.4rem;
    padding: 1.2rem 1.6rem 1.2rem 2.4rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(10, 29, 55, 0.08);
    position: relative;
}

.history-milestone-year {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand-primary);
    letter-spacing: 0.08em;
}

.history-milestone-body h4 {
    margin: 0 0 0.35rem;
    font-size: 1.15rem;
    color: var(--brand-navy);
}

.history-milestone-body p {
    margin: 0;
    color: rgba(27, 36, 51, 0.7);
}

.history-era-milestones li::before {
    content: "";
    position: absolute;
    left: 1.2rem;
    top: 1.4rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-primary);
    box-shadow: 0 0 0 8px rgba(212, 160, 23, 0.18);
}

.history-impact {
    padding: clamp(4.6rem, 8vw, 6.4rem) 0;
    background: var(--brand-light);
}

.history-impact-inner {
    display: grid;
    gap: clamp(2.6rem, 5vw, 3.4rem);
}

.history-impact-header {
    max-width: 680px;
}

.history-impact-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    background: rgba(10, 29, 55, 0.05);
    border: 1px solid rgba(10, 29, 55, 0.08);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--brand-navy);
}

.history-impact-header h2 {
    margin: 1.1rem 0 0.9rem;
    font-size: clamp(1.8rem, 3vw, 2.3rem);
}

.history-impact-header p {
    margin: 0;
    color: rgba(27, 36, 51, 0.7);
}

.history-impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.6rem;
}

.history-impact-card {
    padding: 1.8rem 1.6rem;
    border-radius: 24px;
    background: var(--brand-white);
    border: 1px solid rgba(10, 29, 55, 0.08);
    box-shadow: 0 24px 48px rgba(10, 29, 55, 0.08);
    display: grid;
    gap: 0.6rem;
}

.history-impact-metric {
    font-size: 0.86rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(10, 29, 55, 0.58);
    font-weight: 600;
}

.history-impact-card h3 {
    margin: 0;
    font-size: 1.28rem;
    color: var(--brand-navy);
}

.history-impact-card p {
    margin: 0;
    color: rgba(27, 36, 51, 0.7);
}

.history-legacy {
    padding: clamp(4.6rem, 8vw, 6rem) 0;
    background: var(--brand-white);
}

.history-legacy-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(2.4rem, 5vw, 3.6rem);
    align-items: center;
}

.history-legacy-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    background: rgba(10, 29, 55, 0.06);
    border: 1px solid rgba(10, 29, 55, 0.08);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--brand-navy);
}

.history-legacy-content h2 {
    margin: 1.2rem 0 0.9rem;
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    color: var(--brand-navy);
}

.history-legacy-content p {
    margin: 0 0 1.4rem;
    color: rgba(27, 36, 51, 0.7);
}

.history-legacy-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.9rem;
}

.history-legacy-list li {
    padding-left: 1.4rem;
    position: relative;
    color: rgba(27, 36, 51, 0.72);
}

.history-legacy-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
    box-shadow: 0 6px 14px rgba(111, 0, 0, 0.35);
}

.history-legacy-quote {
    padding: clamp(2.4rem, 5vw, 3rem);
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(10, 29, 55, 0.92), rgba(10, 29, 55, 0.75));
    color: var(--brand-white);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 40px 80px rgba(7, 16, 32, 0.35);
    display: grid;
    gap: 1.2rem;
}

.history-legacy-quote blockquote {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.6;
}

.history-legacy-quote cite {
    font-style: normal;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.history-cta {
    padding: clamp(4.6rem, 9vw, 6.2rem) 0;
    background: linear-gradient(135deg, rgba(10, 29, 55, 0.92), rgba(10, 29, 55, 0.8));
    color: var(--brand-white);
}

.history-cta-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    align-items: center;
    padding: clamp(2.6rem, 6vw, 3.4rem);
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(10, 29, 55, 0.78), rgba(212, 160, 23, 0.25));
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 50px 90px rgba(7, 16, 32, 0.35);
}

.history-cta-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.32rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 600;
}

.history-cta-content h2 {
    margin: 1.1rem 0 0.8rem;
    font-size: clamp(1.9rem, 3vw, 2.3rem);
}

.history-cta-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
}

.history-cta-button {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.6rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
    color: var(--brand-navy);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 20px 42px rgba(111, 0, 0, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.history-cta-button:hover,
.history-cta-button:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 30px 70px rgba(111, 0, 0, 0.45);
}

@media (max-width: 992px) {
    .history-timeline-track {
        left: 24px;
    }

    .history-era {
        margin-left: 48px;
        padding: 2rem;
    }

    .history-era::before {
        left: -32px;
    }

    .history-era-right::before {
        left: -56px;
    }

    .history-era-right {
        margin-left: 72px;
    }

    .history-timeline-header {
        grid-template-columns: 1fr;
    }

    .history-timeline-highlight {
        order: -1;
    }
}

@media (max-width: 720px) {
    .history-hero-stats {
        grid-template-columns: 1fr;
    }

    .history-timeline-track {
        display: none;
    }

    .history-era {
        margin-left: 0;
    }

    .history-era::before {
        left: 24px;
        top: -8px;
    }

    .history-era-right::before {
        left: 24px;
    }

    .history-era-milestones li {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .history-era-milestones li::before {
        left: 1rem;
        top: 0.6rem;
        transform: none;
    }

    .history-cta-button {
        width: 100%;
        justify-self: stretch;
    }

    .history-timeline-highlight {
        padding: 1.8rem;
    }
}

@media (max-width: 520px) {
    .history-era {
        padding: 1.6rem 1.4rem;
    }

    .history-era::before {
        left: 18px;
    }

    .history-era-right::before {
        left: 18px;
    }

    .history-era-nav ul {
        grid-template-columns: 1fr;
    }
}

.dropdown-link:hover .dropdown-arrow,
.dropdown-link:focus-visible .dropdown-arrow,
.dropdown-link.active .dropdown-arrow {
    transform: translateX(2px);
    color: var(--brand-navy);
}

.nav-link span {
    position: relative;
    z-index: 1;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
    color: var(--brand-navy);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.45rem;
    border-radius: 999px;
    font-weight: 600;
    background: linear-gradient(120deg, #6F0000, #EC1C24, #F27F96);
    color: white;
    box-shadow: 0 12px 24px rgba(236, 28, 36, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(236, 28, 36, 0.45);
}

.hero-slider {
    position: relative;
    color: #fff;
    background: #050b18;
    overflow: hidden;
}

.hero-slider-track {
    position: relative;
    min-height: clamp(620px, 94vh, 1180px);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.015);
    transition: opacity 0.8s ease, visibility 0s linear 0.8s, transform 1.1s ease;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    transition-delay: 0s;
    z-index: 2;
}

.hero-slide[aria-hidden="true"] {
    pointer-events: none;
}

.hero-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    background: transparent;
}

.hero-media-element {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-media-element--cover {
    object-fit: cover;
    filter: none;
    transform: none;
    transition: none;
}

.hero-media-element--iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    border: 0;
    transform: translate(-50%, -50%);
    transition: none;
}

.hero-slide.is-active .hero-media-element--cover {
    transform: none;
}

.hero-slide.is-active .hero-media-element--iframe {
    transform: translate(-50%, -50%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: none;
}

.hero-overlay::after {
    content: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    height: 100%;
    padding: clamp(4rem, 9vw, 7.6rem) 0;
}

.hero-content-inner {
    width: min(1080px, calc(100% - 4rem));
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
    align-items: flex-start;
    text-align: left;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.85rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.68);
    font-weight: 600;
    position: relative;
}

.hero-kicker::before {
    content: "";
    width: 42px;
    height: 1px;
    background: var(--brand-primary);
    opacity: 0.8;
}

.hero-title {
    font-size: clamp(2.6rem, 6vw, 4.4rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    max-width: 12ch;
    margin: 0;
    display: none;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2.2vw, 1.35rem);
    max-width: 56ch;
    line-height: 1.65;
    margin: 0;
    color: rgba(243, 246, 252, 0.82);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 0.75rem;
    position: absolute;
    bottom: 2rem;
    right: 2rem;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    border-radius: 999px;
    padding: 0.85rem 1.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.3s ease, color 0.3s ease;
}

.hero-btn--primary {
    background: linear-gradient(130deg, var(--brand-primary) 0%, rgba(255, 255, 255, 0.85) 100%);
    color: var(--brand-navy);
    box-shadow: 0 14px 32px rgba(9, 17, 34, 0.35);
}

.hero-btn--primary:hover,
.hero-btn--primary:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(9, 17, 34, 0.42);
}

.hero-btn--ghost {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-btn--ghost:hover,
.hero-btn--ghost:focus-visible {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.6);
}

.hero-slider-controls.container {
    position: absolute;
    left: clamp(1.2rem, 5vw, 3.6rem);
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(1rem, 4vw, 3rem);
    z-index: 3;
    pointer-events: auto;
}

.hero-slider-controls button,
.hero-slider-controls .hero-slider-status {
    pointer-events: auto;
}

.hero-nav {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.32);
    background: rgba(3, 9, 20, 0.52);
    color: #fff;
    font-size: 1.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.hero-nav-icon {
    font-size: 1.8rem;
    line-height: 1;
}

.hero-nav:hover,
.hero-nav:focus-visible {
    transform: translateY(-2px);
    border-color: var(--brand-primary);
    background: rgba(255, 255, 255, 0.15);
    color: var(--brand-primary);
}

.hero-slider-status {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
}

.hero-progress {
    position: relative;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    overflow: hidden;
    display: none;
}

.hero-progress-fill {
    position: absolute;
    inset: 0;
    width: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.6), var(--brand-primary));
    border-radius: 999px;
    transform-origin: left center;
}

.hero-dots {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.hero-dot {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    background: rgba(3, 9, 20, 0.45);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.hero-dot.is-active,
.hero-dot:hover,
.hero-dot:focus-visible {
    transform: translateY(-2px);
    border-color: var(--brand-primary);
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

@keyframes heroFadeUp {
    0% {
        opacity: 0;
        transform: translateY(26px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-slide .hero-kicker,
.hero-slide .hero-title,
.hero-slide .hero-subtitle,
.hero-slide .hero-actions {
    opacity: 0;
    transform: translateY(30px);
    transition: none;
}

.hero-slide.is-active .hero-kicker {
    animation: heroFadeUp 0.7s ease forwards;
}

.hero-slide.is-active .hero-title {
    animation: heroFadeUp 0.8s ease forwards;
    animation-delay: 0.12s;
}

.hero-slide.is-active .hero-subtitle {
    animation: heroFadeUp 0.9s ease forwards;
    animation-delay: 0.24s;
}

.hero-slide.is-active .hero-actions {
    animation: heroFadeUp 0.9s ease forwards;
    animation-delay: 0.36s;
}

@media (max-width: 768px) {
    .container {
        padding: 1.6rem 0;
    }

    .brand-subtitle {
        font-size: 0.6rem;
    }

    .menu-toggle {
        display: inline-flex;
    }

    /* Mobilde menü açıkken buton farklı görünüm */
    body.nav-open .menu-toggle {
        background: linear-gradient(135deg, var(--brand-navy) 0%, #122a4d 100%);
        border-color: rgba(255, 255, 255, 0.15);
    }

    body.nav-open .menu-toggle .menu-label {
        color: #fff;
    }

    body.nav-open .menu-toggle .menu-caret {
        background: rgba(255, 255, 255, 0.2);
        box-shadow: none;
    }

    body.nav-open .menu-toggle .menu-caret::before {
        border-right-color: #fff;
        border-bottom-color: #fff;
    }

    .primary-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 82vw);
        height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 0;
        margin-left: 0;
        transform: translateX(110%);
        transition: transform 0.35s ease;
        z-index: 32;
    }

    body.nav-open .primary-nav {
        transform: translateX(0);
    }

    .nav-surface {
        width: 100%;
        height: 100%;
        padding: 4.8rem 1.6rem 2.2rem;
        flex-direction: column;
        align-items: stretch;
        gap: 1.1rem;
        border-radius: 0;
        border: none;
        box-shadow: none;
        background: linear-gradient(168deg, rgba(10, 29, 55, 0.98) 0%, rgba(10, 29, 55, 0.9) 45%, rgba(10, 29, 55, 0.88) 100%);
        overflow-y: auto;
    }

    .primary-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0.85rem;
    }

    .nav-link {
        width: 100%;
        justify-content: space-between;
        padding: 0.9rem 1.15rem;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.08);
        color: #f7f8fb;
        font-size: 0.95rem;
        letter-spacing: 0.06em;
        text-transform: none;
        min-width: 0;
    }

    .nav-link:hover,
    .nav-link:focus-visible,
    .nav-link.active {
        color: #fff;
        background: rgba(212, 160, 23, 0.35);
    }

    .nav-link svg {
        margin-left: 0.8rem;
    }

    .nav-cta {
        width: 100%;
        justify-content: center;
        padding: 0.95rem 1.2rem;
        margin-top: 0.5rem;
        box-shadow: 0 18px 36px rgba(236, 28, 36, 0.35);
    }

    .nav-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 16px 30px rgba(236, 28, 36, 0.45);
    }

    .nav-indicator {
        display: none;
    }

    .nav-dropdown {
        position: relative;
        top: 0;
        left: 0;
        margin-top: 0.6rem;
        min-width: 100%;
        transform: translateY(-8px);
        opacity: 0;
        pointer-events: none;
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        background: rgba(255, 255, 255, 0.08);
        box-shadow: none;
        transition: opacity 0.25s ease, transform 0.25s ease;
    }

    .has-dropdown.dropdown-open > .nav-dropdown {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-dropdown::before {
        display: none;
    }

    .nav-dropdown-inner {
        padding: 0.8rem 0.75rem 0.6rem;
        background: transparent;
    }

    .nav-dropdown ul {
        gap: 0.55rem;
    }

    .dropdown-link {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        width: 100%;
        padding: 0.9rem 1.1rem;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.1);
        color: #f7f8fb;
        border: 1px solid transparent;
        letter-spacing: 0.04em;
    }

    .dropdown-link::before {
        display: none;
    }

    .dropdown-link .dropdown-arrow {
        color: #fefefe;
    }

    .dropdown-link:hover,
    .dropdown-link:focus-visible,
    .dropdown-link.active {
        background: rgba(212, 160, 23, 0.3);
        border-color: rgba(212, 160, 23, 0.45);
        transform: none;
    }

    .nav-backdrop {
        display: block;
    }

    .hero-slider-track {
        min-height: clamp(460px, 92vh, 1100px);
    }

    .hero-content {
        padding: clamp(2.4rem, 10vw, 4.8rem) 0 4.8rem;
    }

    .hero-content-inner {
        width: calc(100% - 2.4rem);
    }

    .hero-slider-controls.container {
        position: absolute;
        left: 1.2rem;
        top: 50%;
        transform: translateY(-50%);
        width: auto;
        margin: 0;
        padding: 0;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1.2rem;
        pointer-events: auto;
    }

    .hero-actions {
        position: absolute;
        bottom: 1rem;
        right: 1rem;
        gap: 0.6rem;
    }

    .typing-section {
        padding: clamp(2.2rem, 10vw, 3rem) 0;
    }

    .typing-inner {
        gap: 1rem;
    }

    .typing-display {
        flex-direction: column;
        font-size: clamp(1.1rem, 5vw, 1.6rem);
        padding: 1rem 1.6rem;
        border-radius: 1.6rem;
    }

    .typing-quote {
        display: none;
    }

    .typing-dynamic {
        white-space: normal;
    }

    .hero-slider-status {
        width: 100%;
        align-items: stretch;
        gap: 0.65rem;
    }

    .hero-dots {
        justify-content: space-between;
        gap: 0.5rem;
    }

    .hero-dot {
        flex: 1 1 auto;
        height: 44px;
        border-radius: 12px;
    }

    .hero-nav {
        width: 46px;
        height: 46px;
        font-size: 1rem;
    }

    .hero-progress {
        height: 3px;
    }
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--brand-navy);
}

/* Modern News Section */
.news-section {
    padding: 5rem 0;
    background: #f0efeb;
    position: relative;
}

.news-section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.news-section-header {
    text-align: left;
    margin-bottom: 4rem;
}

.news-section-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    color: var(--brand-navy);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.news-section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0;
    line-height: 1.6;
    font-weight: 400;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.news-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(212, 164, 23, 0.2);
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.news-card:hover::before {
    opacity: 1;
}

/* News Card Header */
.news-card-header {
    padding: 1.5rem 1.5rem 0 1.5rem;
}

.news-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.news-card-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.date-icon {
    font-size: 1rem;
}

.news-card-category {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--brand-navy);
    background: rgba(212, 164, 23, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
}

.category-icon {
    font-size: 0.9rem;
}

/* News Card Content */
.news-card-content {
    padding: 0 1.5rem;
}

.news-card-title {
    margin: 0 0 1rem 0;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--brand-navy);
}

.news-card-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-card-link:hover {
    color: var(--brand-primary);
}

.news-card-excerpt {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
}

/* News Card Footer */
.news-card-footer {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.news-card-readmore {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--brand-primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.news-card-readmore:hover {
    color: #b8961a;
    gap: 0.75rem;
}

.readmore-arrow {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.news-card-readmore:hover .readmore-arrow {
    transform: translateX(4px);
}

/* News Section CTA */
.news-section-cta {
    text-align: center;
    margin-top: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(111, 0, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(212, 164, 23, 0.4);
}

.btn-arrow {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Responsive Design for News Section */
@media (max-width: 1024px) {
    .news-section {
        padding: 4rem 0;
    }

    .news-section-inner {
        padding: 0 1.5rem;
    }

    .news-section-title {
        font-size: clamp(2rem, 7vw, 3rem);
    }

    .news-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .news-section {
        padding: 3rem 0;
    }

    .news-section-header {
        margin-bottom: 3rem;
    }

    .news-section-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin-bottom: 0.75rem;
    }

    .news-section-subtitle {
        font-size: 1.1rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .news-card {
        border-radius: 16px;
    }

    .news-card-header {
        padding: 1.25rem 1.25rem 0 1.25rem;
    }

    .news-card-content {
        padding: 0 1.25rem;
    }

    .news-card-footer {
        padding: 0 1.25rem 1.25rem 1.25rem;
    }

    .news-card-title {
        font-size: 1.3rem;
    }

    .news-card-excerpt {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .news-section {
        padding: 2.5rem 0;
    }

    .news-section-inner {
        padding: 0 1rem;
    }

    .news-section-header {
        margin-bottom: 2.5rem;
    }

    .news-section-title {
        font-size: clamp(1.5rem, 10vw, 2rem);
    }

    .news-section-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }

    .news-grid {
        gap: 1.25rem;
        margin-bottom: 2rem;
    }

    .news-card {
        border-radius: 12px;
    }

    .news-card-header {
        padding: 1rem 1rem 0 1rem;
    }

    .news-card-content {
        padding: 0 1rem;
    }

    .news-card-footer {
        padding: 0 1rem 1rem 1rem;
    }

    .news-card-title {
        font-size: 1.2rem;
    }

    .news-card-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .news-card-category {
        align-self: flex-end;
    }

    .btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }
}

.cta {
    margin-top: 2rem;
}

.btn {
    display: inline-block;
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.btn-primary {
    background: var(--brand-navy);
    color: #fff;
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

.btn:hover {
    opacity: 0.85;
}

.typing-section {
    position: relative;
    padding: clamp(3.4rem, 9vw, 5.6rem) 0;
    background: #f0efeb;
    color: var(--text);
    overflow: hidden;
}

.typing-section::before,
.typing-section::after {
    content: none;
}

.typing-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1.4rem;
    text-align: center;
    max-width: min(1080px, 94%);
    padding: clamp(2rem, 5vw, 2.9rem);
    border-radius: clamp(1.8rem, 4vw, 2.8rem);
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.72) 100%);
    border: 1px solid rgba(10, 29, 55, 0.08);
    box-shadow: 0 24px 58px rgba(4, 12, 24, 0.18);
    backdrop-filter: blur(4px);
    overflow: hidden;
}

.typing-inner::before {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: inherit;
    border: 1px solid rgba(10, 29, 55, 0.08);
    opacity: 0.5;
    pointer-events: none;
    z-index: -1;
}

.typing-meta {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: center;
}

.typing-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.78rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(10, 29, 55, 0.55);
}

.typing-kicker::before,
.typing-kicker::after {
    content: "";
    width: 40px;
    height: 1px;
    background: rgba(10, 29, 55, 0.28);
    display: inline-block;
}

.typing-title {
    font-size: clamp(1.9rem, 4.6vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    margin: 0;
    color: var(--brand-navy);
}

.typing-display {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: clamp(1rem, 3vw, 1.5rem) clamp(1.8rem, 5vw, 2.6rem);
    border-radius: clamp(1.6rem, 4vw, 2.4rem);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 247, 243, 0.85) 100%);
    border: 1px solid rgba(10, 29, 55, 0.12);
    box-shadow: 0 22px 48px rgba(4, 12, 24, 0.16);
    font-size: clamp(1.3rem, 3.4vw, 2.3rem);
    font-weight: 600;
}

.typing-display::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0) 65%);
    opacity: 0.6;
    pointer-events: none;
}

.typing-display::after {
    content: "";
    position: absolute;
    inset: 2px;
    border-radius: inherit;
    border: 1px solid rgba(10, 29, 55, 0.1);
    opacity: 0.35;
    pointer-events: none;
}

.typing-quote {
    font-size: 1.3em;
    font-weight: 500;
    color: rgba(10, 29, 55, 0.45);
}

.typing-dynamic {
    position: relative;
    z-index: 1;
    white-space: nowrap;
    color: var(--brand-navy);
}

.typing-caret {
    width: 3px;
    height: 1.4em;
    background: var(--brand-primary);
    border-radius: 999px;
    animation: typingCaret 1s steps(2, start) infinite;
}

@keyframes typingCaret {
    0%,
    49% {
        opacity: 1;
    }

    50%,
    100% {
        opacity: 0;
    }
}

section.alt {
    background: #fff;
}

.about-highlight {
    background: #f0efeb;
    padding: clamp(3rem, 8vw, 5rem) 0;
    border-bottom: 1px solid rgba(10, 29, 55, 0.06);
}

.about-highlight-inner {
    display: grid;
    gap: clamp(1.8rem, 4vw, 2.8rem);
}

.about-highlight-header {
    display: grid;
    gap: 0.75rem;
    max-width: 780px;
}

.about-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(10, 29, 55, 0.55);
}

.about-kicker::before {
    content: "";
    width: 36px;
    height: 1px;
    background: rgba(10, 29, 55, 0.28);
}

.about-title {
    margin: 0;
    font-size: clamp(2rem, 4.8vw, 3rem);
    color: var(--brand-navy);
    letter-spacing: -0.015em;
}

.about-subtitle {
    margin: 0;
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    color: rgba(10, 29, 55, 0.68);
    line-height: 1.7;
}

.about-highlight-content {
    display: grid;
    gap: 1.2rem;
    max-width: 960px;
    font-size: clamp(1rem, 2.2vw, 1.12rem);
    line-height: 1.75;
    color: rgba(10, 29, 55, 0.82);
}

.about-highlight-content p {
    margin: 0;
}

.about-highlight-content p:first-of-type {
    font-weight: 600;
}

.projects-hero {
    position: relative;
    padding: clamp(3.6rem, 8vw, 5.4rem) 0 clamp(2.6rem, 6vw, 4rem);
    background: #ffffff;
    border-bottom: 1px solid rgba(10, 29, 55, 0.06);
}

.projects-hero-inner {
    display: grid;
    gap: clamp(1.8rem, 4vw, 3rem);
    grid-template-columns: minmax(0, 1.4fr) minmax(260px, 1fr);
    align-items: start;
}

.projects-hero-content {
    display: grid;
    gap: 1rem;
    max-width: 640px;
}

.projects-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.32rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(10, 29, 55, 0.12);
    background: rgba(10, 29, 55, 0.05);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(10, 29, 55, 0.7);
}

.projects-hero-content h1 {
    margin: 0;
    font-size: clamp(2.3rem, 4.8vw, 3.1rem);
    line-height: 1.05;
    color: var(--brand-navy);
}

.projects-hero-content p {
    margin: 0;
    font-size: clamp(1.02rem, 2.1vw, 1.22rem);
    color: rgba(10, 29, 55, 0.68);
    max-width: 56ch;
    line-height: 1.7;
}

.projects-hero-stats {
    display: grid;
    gap: 0.9rem;
    align-self: stretch;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.projects-hero-stat {
    border: 1px solid rgba(10, 29, 55, 0.08);
    border-radius: 16px;
    padding: 1.15rem 1.3rem;
    background: linear-gradient(145deg, rgba(247, 247, 247, 0.85) 0%, rgba(255, 255, 255, 0.9) 100%);
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.projects-hero-stat-value {
    font-size: clamp(2rem, 3.4vw, 2.6rem);
    font-weight: 700;
    color: var(--brand-navy);
    letter-spacing: -0.01em;
}

.projects-hero-stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(10, 29, 55, 0.55);
}

.projects-gallery-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.32rem 0.95rem;
    border-radius: 999px;
    background: rgba(10, 29, 55, 0.05);
    border: 1px solid rgba(10, 29, 55, 0.08);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(10, 29, 55, 0.7);
}


.projects-gallery {
    background: #f0efeb;
    padding: clamp(2.6rem, 7vw, 4.6rem) 0;
    border-bottom: 1px solid rgba(10, 29, 55, 0.05);
}

.projects-gallery-inner {
    display: grid;
    gap: clamp(1.9rem, 4vw, 2.8rem);
}

.projects-gallery-header {
    display: grid;
    gap: 0.65rem;
    max-width: 760px;
}

.projects-gallery-header h2 {
    margin: 0;
    font-size: clamp(1.9rem, 4.4vw, 2.6rem);
    color: var(--brand-navy);
}

.projects-gallery-header p {
    margin: 0;
    font-size: clamp(1rem, 2.1vw, 1.15rem);
    color: rgba(10, 29, 55, 0.7);
    line-height: 1.7;
}

.projects-gallery .project-card {
    min-height: 320px;
    background: transparent;
    border: none;
    box-shadow: none;
}

.projects-gallery .project-card::before,
.projects-gallery .project-card::after {
    display: none;
}

.projects-gallery .project-card-media {
    position: relative;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.projects-gallery .project-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.projects-gallery .project-card:hover .project-card-media img {
    transform: scale(1.05);
}

.project-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-card-overlay {
    opacity: 1;
}

.project-card-overlay .project-card-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.5rem;
    width: 100%;
    gap: 0.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.project-card-overlay .project-card-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    color: var(--brand-navy);
    line-height: 1.3;
}

.project-card-overlay .project-card-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(var(--brand-navy-rgb), 0.8);
    font-weight: 500;
}

.location-icon {
    font-size: 1rem;
}

/* Hero-Style Featured Projects Section */
.projects-showcase {
    padding: 6rem 0;
    background: #f0efeb !important;
    position: relative;
    overflow: hidden;
}

.projects-showcase-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.projects-showcase-header {
    text-align: center;
    margin-bottom: 5rem;
}

.projects-showcase-header h2 {
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 900;
    color: var(--brand-navy);
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
    text-shadow: none;
}

.projects-showcase-header p {
    font-size: 1.4rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

/* Büyük Featured Proje */
.projects-featured {
    margin-bottom: 4rem;
}

.project-featured-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 500px;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.project-featured-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.project-featured-media {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.project-featured-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-featured-card:hover .project-featured-media img {
    transform: scale(1.1);
}

.project-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 29, 55, 0.8) 0%,
        rgba(10, 29, 55, 0.6) 50%,
        rgba(212, 164, 23, 0.3) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-featured-card:hover .project-featured-overlay {
    opacity: 1;
}

.project-featured-content {
    color: white;
    max-width: 600px;
}

.project-featured-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.project-featured-category {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: rgba(212, 164, 23, 0.9);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(212, 164, 23, 0.3);
}

.project-featured-status {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

.project-featured-status .status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--brand-gold);
    box-shadow: 0 0 20px rgba(212, 164, 23, 0.8);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.project-featured-title {
    margin: 0 0 1.5rem 0;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.project-featured-location {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.95;
    padding: 1rem 0;
}

/* Küçük Proje Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.project-grid-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 280px;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.project-grid-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.project-grid-media {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.project-grid-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-grid-card:hover .project-grid-media img {
    transform: scale(1.05);
}

.project-grid-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 29, 55, 0.8) 0%,
        rgba(212, 164, 23, 0.2) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-grid-card:hover .project-grid-overlay {
    opacity: 1;
}

.project-grid-content {
    color: white;
}

.project-grid-title {
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.project-grid-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Responsive Design for Featured Projects */
@media (max-width: 1024px) {
    .projects-showcase {
        padding: 5rem 0;
    }

    .projects-showcase-inner {
        padding: 0 1.5rem;
    }

    .projects-showcase-header h2 {
        font-size: clamp(2.5rem, 7vw, 4rem);
    }

    .project-featured-card {
        height: 500px;
    }

    .project-featured-overlay {
        padding: 3rem;
    }

    .project-featured-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .projects-showcase {
        padding: 4rem 0;
    }

    .projects-showcase-header {
        margin-bottom: 3rem;
    }

    .projects-showcase-header h2 {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 1.5rem;
    }

    .projects-showcase-header p {
        font-size: 1.2rem;
    }

    .projects-featured {
        margin-bottom: 3rem;
    }

    .project-featured-card {
        height: 400px;
        border-radius: 24px;
    }

    .project-featured-overlay {
        padding: 2.5rem;
    }

    .project-featured-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .project-featured-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .project-featured-location {
        font-size: 1.1rem;
    }

    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.25rem;
    }

    .project-grid-card {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .projects-showcase {
        padding: 3rem 0;
    }

    .projects-showcase-inner {
        padding: 0 1rem;
    }

    .projects-showcase-header {
        margin-bottom: 2.5rem;
    }

    .projects-showcase-header h2 {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
    }

    .projects-showcase-header p {
        font-size: 1rem;
        line-height: 1.5;
    }

    .projects-featured {
        margin-bottom: 2.5rem;
    }

    .project-featured-card {
        height: 350px;
        border-radius: 20px;
    }

    .project-featured-overlay {
        padding: 2rem;
    }

    .project-featured-meta {
        margin-bottom: 1.5rem;
    }

    .project-featured-category {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .project-featured-status {
        font-size: 0.9rem;
    }

    .project-featured-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
        margin-bottom: 1rem;
    }

    .project-featured-location {
        font-size: 1rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .project-grid-card {
        height: 250px;
        border-radius: 16px;
    }

    .project-grid-overlay {
        padding: 1.5rem;
    }

    .project-grid-title {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }

    .project-grid-location {
        font-size: 0.9rem;
    }
}

/* Gallery Styles for Projects Page */
.projects-gallery {
    padding: 4rem 0;
    background: #f0efeb;
}

.projects-gallery-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.projects-gallery-header {
    text-align: center;
    margin-bottom: 3rem;
}

.projects-gallery-header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--brand-navy);
    margin-bottom: 1rem;
}

.projects-gallery-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.projects-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: clamp(2rem, 4vw, 3rem);
    margin-top: 2rem;
}

.project-card--gallery {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #f0efeb;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.project-card--gallery:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.project-card--gallery .project-card-media {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.project-card--gallery .project-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card--gallery:hover .project-card-media img {
    transform: scale(1.05);
}

.project-card--gallery .project-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-card--gallery:hover .project-card-overlay {
    opacity: 1;
}

.project-card--gallery .project-card-content {
    width: 100%;
    gap: 1rem;
    color: white;
}

.project-card--gallery .project-card-title {
    margin: 0 0 1rem 0;
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 700;
    line-height: 1.3;
    color: white;
}

.project-card--gallery .project-card-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Responsive Design for Projects Gallery */
@media (max-width: 768px) {
    .projects-gallery {
        padding: 3rem 0;
    }

    .projects-gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    .project-card--gallery {
        aspect-ratio: 3/2;
    }

    .project-card--gallery .project-card-overlay {
        padding: 1.5rem;
    }

    .project-card--gallery .project-card-title {
        font-size: clamp(1.2rem, 4vw, 1.5rem);
    }
}

@media (max-width: 480px) {
    .projects-gallery {
        padding: 2rem 0;
    }

    .projects-gallery-grid {
        gap: 1rem;
        margin-top: 1rem;
    }

    .project-card--gallery {
        aspect-ratio: 4/3;
    }

    .project-card--gallery .project-card-overlay {
        padding: 1rem;
    }

    .project-card--gallery .project-card-title {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .project-card--gallery .project-card-location {
        font-size: 0.9rem;
    }
}

.projects-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1.1rem;
    border-radius: 18px;
    background: var(--brand-white);
    border: 1px solid rgba(10, 29, 55, 0.08);
    box-shadow: 0 10px 24px rgba(10, 29, 55, 0.07);
}

.projects-filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.projects-filter-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.52rem 1.3rem;
    border-radius: 999px;
    border: 1px solid rgba(10, 29, 55, 0.12);
    background: rgba(10, 29, 55, 0.04);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.74rem;
    color: rgba(10, 29, 55, 0.65);
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.projects-filter-button:hover,
.projects-filter-button:focus-visible {
    color: var(--brand-navy);
    border-color: rgba(10, 29, 55, 0.24);
    background: rgba(10, 29, 55, 0.08);
}

.projects-filter-button.is-active {
    color: var(--brand-navy);
    border-color: rgba(212, 160, 23, 0.45);
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.22) 0%, rgba(212, 160, 23, 0.4) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.projects-category {
    padding: clamp(3rem, 8vw, 5rem) 0;
    background: linear-gradient(180deg, rgba(247, 247, 247, 0.5) 0%, #ffffff 50%, rgba(247, 247, 247, 0.5) 100%);
    border-bottom: 1px solid rgba(var(--brand-navy-rgb), 0.06);
}

.projects-category:nth-child(even) {
    background: linear-gradient(180deg, #ffffff 0%, rgba(247, 247, 247, 0.3) 50%, #ffffff 100%);
}

.projects-category-inner {
    display: grid;
    gap: clamp(2rem, 5vw, 3rem);
}

.projects-category-header {
    display: grid;
    gap: 0.5rem;
    max-width: 800px;
}

.projects-category-header h2 {
    margin: 0;
    font-size: clamp(2.2rem, 5vw, 3rem);
    color: var(--brand-navy);
    position: relative;
}

.projects-category-header h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--brand-gold);
    border-radius: 2px;
}

.projects-category-header p {
    margin: 0;
    font-size: clamp(1.05rem, 2.2vw, 1.25rem);
    color: rgba(var(--brand-navy-rgb), 0.7);
    line-height: 1.6;
}

.projects-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: clamp(1.5rem, 3.5vw, 2.5rem);
}

.projects-showcase {
    padding: clamp(4rem, 10vw, 6rem) 0;
    background: linear-gradient(180deg, #ffffff 0%, rgba(247, 247, 247, 0.4) 100%);
}

.projects-showcase-inner {
    display: grid;
    gap: clamp(3rem, 6vw, 4rem);
}

.projects-showcase-header {
    text-align: left;
    max-width: 780px;
    margin: 0;
}

.projects-showcase-header h1 {
    margin: 0;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    color: var(--brand-navy);
    line-height: 1.1;
}

.projects-showcase-header p {
    margin: 0.5rem 0 0;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: rgba(var(--brand-navy-rgb), 0.7);
    line-height: 1.6;
}

.projects-showcase .project-card {
    min-height: 280px;
    background: transparent;
    border: none;
    box-shadow: none;
}

.projects-showcase .project-card::before,
.projects-showcase .project-card::after {
    display: none;
}

.projects-showcase .project-card-media {
    position: relative;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.projects-showcase .project-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.projects-showcase .project-card:hover .project-card-media img {
    transform: scale(1.05);
}

.projects-showcase-empty {
    margin: 1rem 0 0;
    padding: 1rem 1.4rem;
    border-radius: 16px;
    border: 1px dashed rgba(var(--brand-navy-rgb), 0.18);
    color: rgba(var(--brand-navy-rgb), 0.6);
    background: rgba(var(--brand-navy-rgb), 0.03);
    font-weight: 500;
}

.project-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 26px;
    border: 1.5px solid rgba(var(--brand-navy-rgb), 0.08);
    box-shadow: 0 24px 50px rgba(var(--brand-navy-rgb), 0.2), 0 16px 32px rgba(6, 7, 12, 0.18);
    overflow: hidden;
    min-height: 100%;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, opacity 0.35s ease;
    opacity: 1;
}

.project-card::before {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(var(--brand-navy-rgb), 0.08);
    border-radius: 20px;
    pointer-events: none;
    transition: border-color 0.35s ease;
}

.project-card::after {
    content: "";
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(var(--brand-gold-rgb), 0.9), rgba(var(--brand-navy-rgb), 0.55));
    opacity: 0.85;
    pointer-events: none;
}

.project-card:hover,
.project-card:focus-within {
    transform: translateY(-8px);
    box-shadow: 0 36px 72px rgba(var(--brand-navy-rgb), 0.26), 0 30px 48px rgba(4, 5, 8, 0.24);
    border-color: rgba(var(--brand-gold-rgb), 0.45);
}

.project-card:hover::before,
.project-card:focus-within::before {
    border-color: rgba(var(--brand-gold-rgb), 0.45);
}

.project-card.is-hidden {
    pointer-events: none;
    opacity: 0;
    transform: translate3d(0, 32px, 0) scale(0.96);
}

.project-card-media {
    position: relative;
    aspect-ratio: 16 / 10;
    background: rgba(var(--brand-navy-rgb), 0.08);
    overflow: hidden;
}

.project-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.3s ease;
}

.project-card:hover .project-card-media img,
.project-card:focus-within .project-card-media img {
    transform: scale(1.05);
    filter: brightness(1.05) saturate(1.08);
}

.project-card-media--placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(var(--brand-navy-rgb), 0.04) 0%, rgba(var(--brand-gold-rgb), 0.12) 100%);
    color: rgba(var(--brand-navy-rgb), 0.45);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    width: 100%;
    height: 100%;
}

.project-card-media-placeholder-icon {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
}

.project-card-media-placeholder-icon-top,
.project-card-media-placeholder-icon-bottom {
    display: block;
    width: 60px;
    border-radius: 6px;
    background: rgba(var(--brand-navy-rgb), 0.14);
    border: 1px solid rgba(var(--brand-navy-rgb), 0.08);
}

.project-card-media-placeholder-icon-top {
    height: 14px;
}

.project-card-media-placeholder-icon-bottom {
    height: 34px;
}

.project-card-media-placeholder-text {
    font-size: 0.78rem;
    color: rgba(var(--brand-navy-rgb), 0.55);
}

.project-card-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: clamp(1.6rem, 3.5vw, 2rem);
    flex: 1 1 auto;
}

.project-card-category {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    background: rgba(var(--brand-navy-rgb), 0.1);
    color: var(--brand-navy);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.project-card-title {
    margin: 0;
    font-size: clamp(1.25rem, 2.6vw, 1.55rem);
    color: var(--brand-navy);
    line-height: 1.3;
    font-weight: 700;
}

.project-card-summary {
    margin: 0;
    color: rgba(var(--brand-navy-rgb), 0.68);
    line-height: 1.65;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
}

.project-card-status {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(var(--brand-gold-rgb), 0.12);
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--brand-navy);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: auto;
    border: 1px solid rgba(var(--brand-gold-rgb), 0.2);
}

.project-card-status::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--brand-gold);
    box-shadow: 0 0 0 3px rgba(var(--brand-gold-rgb), 0.24);
}

.project-card-location {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: rgba(var(--brand-navy-rgb), 0.7);
    font-weight: 500;
}

.project-card-location::before {
    content: "📍";
    font-size: 1rem;
}

.project-card.is-hidden {
    display: none;
}

.projects-empty-state {
    margin: 0;
    padding: 1.6rem 1.8rem;
    border-radius: 18px;
    background: rgba(var(--brand-navy-rgb), 0.04);
    border: 1px dashed rgba(var(--brand-navy-rgb), 0.16);
    color: rgba(var(--brand-navy-rgb), 0.65);
    text-align: center;
    font-weight: 500;
}

@media (max-width: 992px) {
    .projects-hero-inner {
        grid-template-columns: 1fr;
    }

    .projects-hero-stats {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .projects-category-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }

    .projects-showcase-grid {
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
        gap: 2.5rem;
    }
}

@media (max-width: 720px) {
    .projects-hero-stats {
        gap: 1rem;
    }

    .projects-category-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .projects-showcase-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .project-card-content {
        padding: 1.4rem;
    }

    .projects-filter-bar {
        padding: 0.85rem;
        gap: 0.75rem;
        flex-direction: column;
        align-items: stretch;
    }

    .projects-filter-buttons {
        width: 100%;
    }

    .projects-filter-button {
        flex: 1 1 auto;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .project-card {
        border-radius: 20px;
    }
}

@media (max-width: 640px) {
    .about-highlight-inner {
        gap: 1.6rem;
    }

    .about-highlight-content {
        font-size: 1rem;
    }
}

.about-hero {
    position: relative;
    padding: clamp(3.5rem, 8vw, 5.5rem) 0 clamp(2.8rem, 7vw, 4.5rem);
    background: radial-gradient(circle at 12% 18%, rgba(240, 231, 200, 0.25) 0%, transparent 50%),
        linear-gradient(135deg, rgba(10, 29, 55, 0.95) 0%, rgba(8, 22, 40, 0.92) 52%, rgba(14, 43, 82, 0.88) 100%);
    color: var(--brand-white);
    overflow: hidden;
}

.about-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(212, 160, 23, 0.08), transparent 55%);
    pointer-events: none;
}

.about-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    gap: clamp(2rem, 5vw, 3rem);
    align-items: stretch;
    grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr);
}

.about-hero-content {
    display: grid;
    gap: 1.4rem;
}

.about-hero-aside {
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 1.4rem;
}

.about-hero-media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-media-frame {
    position: relative;
    width: min(440px, 100%);
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 32px 60px rgba(5, 15, 30, 0.35);
    transform: translateY(12px);
}

.about-hero-media-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(10, 29, 55, 0) 0%, rgba(10, 29, 55, 0.55) 100%);
}

.about-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.74);
}

.about-hero-kicker::before {
    content: "";
    width: 34px;
    height: 2px;
    background: var(--brand-gold);
}

.about-hero-title {
    margin: 0;
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    line-height: 1.1;
}

.about-hero-lead {
    margin: 0;
    font-size: clamp(1.05rem, 2.2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 48ch;
}

.about-hero-highlights {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.85rem;
}

.about-hero-highlights li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    padding: 0.65rem 1rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    backdrop-filter: blur(6px);
}

.about-hero-highlights li::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--brand-gold);
    box-shadow: 0 0 0 6px rgba(212, 160, 23, 0.2);
}

.about-hero-stats {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 26px;
    padding: clamp(1.2rem, 3vw, 1.8rem);
    backdrop-filter: blur(12px);
}

.about-stat-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 1.35rem;
    display: grid;
    gap: 0.55rem;
    backdrop-filter: blur(12px);
}

.about-stat-value {
    font-size: clamp(2.2rem, 4.2vw, 2.8rem);
    font-weight: 700;
    color: var(--brand-gold);
}

.about-stat-label {
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

.about-stat-card p {
    margin: 0;
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.6;
}

.about-story {
    background: var(--brand-light);
    padding: clamp(3rem, 7vw, 4.2rem) 0;
}

.about-story-grid {
    display: grid;
    gap: clamp(2rem, 6vw, 3rem);
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.about-story-intro {
    display: grid;
    gap: 1.2rem;
}

.about-story-intro h2 {
    margin: 0;
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    color: var(--brand-navy);
}

.about-story-intro p {
    margin: 0;
    color: rgba(10, 29, 55, 0.78);
    line-height: 1.75;
}

.about-story-cards {
    display: grid;
    gap: 1.2rem;
}

.about-story-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 1.8rem;
    border: 1px solid rgba(10, 29, 55, 0.08);
    box-shadow: 0 18px 34px rgba(6, 14, 28, 0.08);
    display: grid;
    gap: 0.75rem;
}

.about-story-card h3 {
    margin: 0;
    color: var(--brand-navy);
    font-size: clamp(1.15rem, 2.4vw, 1.35rem);
}

.about-story-card p {
    margin: 0;
    color: rgba(10, 29, 55, 0.7);
    line-height: 1.65;
}

.about-showcase {
    background: linear-gradient(120deg, #ffffff 0%, rgba(240, 239, 235, 0.8) 100%);
    padding: clamp(2.8rem, 6.5vw, 4.6rem) 0;
}

.about-showcase-grid {
    display: grid;
    gap: clamp(1.6rem, 4vw, 2.4rem);
    grid-template-columns: minmax(320px, 1.05fr) minmax(280px, 1fr);
    align-items: stretch;
}

.about-showcase-visual {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    min-height: 320px;
    box-shadow: 0 28px 48px rgba(6, 14, 28, 0.18);
}

.about-showcase-visual {
    grid-row: span 2;
}

.about-showcase-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(10, 29, 55, 0.05) 0%, rgba(10, 29, 55, 0.55) 100%);
}

.about-showcase-card {
    background: #ffffff;
    border-radius: 26px;
    border: 1px solid rgba(10, 29, 55, 0.08);
    padding: clamp(1.8rem, 4vw, 2.2rem);
    display: grid;
    gap: 0.9rem;
    box-shadow: 0 20px 36px rgba(6, 14, 28, 0.12);
}

.about-showcase-card--accent {
    background: linear-gradient(135deg, rgba(10, 29, 55, 0.96) 0%, rgba(14, 36, 66, 0.9) 100%);
    color: var(--brand-white);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.about-showcase-kicker {
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(10, 29, 55, 0.6);
}

.about-showcase-card--accent .about-showcase-kicker {
    color: rgba(255, 255, 255, 0.65);
}

.about-showcase-card h2 {
    margin: 0;
    font-size: clamp(1.8rem, 3.8vw, 2.4rem);
    color: var(--brand-navy);
}

.about-showcase-card--accent h2 {
    color: var(--brand-white);
}

.about-showcase-card p {
    margin: 0;
    color: rgba(10, 29, 55, 0.72);
    line-height: 1.7;
}

.about-showcase-card--accent p {
    color: #ffffff;
}

.about-showcase-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.65rem;
}

.about-showcase-list li {
    position: relative;
    padding-left: 1.6rem;
    color: rgba(10, 29, 55, 0.75);
}

.about-showcase-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 50%;
    background: var(--brand-gold);
    box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.25);
}

.about-showcase-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--brand-gold);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.about-showcase-link::after {
    content: "→";
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.about-showcase-link:hover::after,
.about-showcase-link:focus-visible::after {
    transform: translateX(4px);
}

.about-pillars {
    background: #f0efeb;
    padding: clamp(3rem, 7vw, 4.8rem) 0;
    border-top: 1px solid rgba(10, 29, 55, 0.06);
    border-bottom: 1px solid rgba(10, 29, 55, 0.06);
}

.about-pillars-inner {
    display: grid;
    gap: clamp(2rem, 5vw, 3rem);
}

.about-pillars-header {
    display: grid;
    gap: 0.8rem;
    max-width: 720px;
}

.about-pillars-kicker {
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(10, 29, 55, 0.55);
}

.about-pillars-header h2 {
    margin: 0;
    font-size: clamp(1.9rem, 4.2vw, 2.6rem);
    color: var(--brand-navy);
}

.about-pillars-header p {
    margin: 0;
    color: rgba(10, 29, 55, 0.68);
    line-height: 1.7;
}

.about-pillars-grid {
    display: grid;
    gap: clamp(1.1rem, 3vw, 1.9rem);
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.about-pillar-card {
    background: linear-gradient(140deg, #ffffff 0%, rgba(255, 255, 255, 0.92) 100%);
    border: 1px solid rgba(10, 29, 55, 0.08);
    border-radius: 24px;
    padding: clamp(1.6rem, 3.6vw, 2rem);
    box-shadow: 0 16px 30px rgba(6, 14, 28, 0.1);
    display: grid;
    gap: 0.85rem;
}

.about-pillar-card h3 {
    margin: 0;
    color: var(--brand-navy);
}

.about-pillar-card p {
    margin: 0;
    color: rgba(10, 29, 55, 0.72);
    line-height: 1.65;
}

.about-values {
    background: #ffffff;
    padding: clamp(3rem, 6.5vw, 4.2rem) 0;
}

.about-values-inner {
    display: grid;
    gap: clamp(2rem, 5vw, 3rem);
}

.about-values-header {
    display: grid;
    gap: 0.7rem;
    max-width: 680px;
}

.about-values-header h2 {
    margin: 0;
    font-size: clamp(1.9rem, 4vw, 2.5rem);
    color: var(--brand-navy);
}

.about-values-header p {
    margin: 0;
    color: rgba(10, 29, 55, 0.7);
}

.about-values-grid {
    display: grid;
    gap: clamp(1.1rem, 3vw, 1.8rem);
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.about-value-card {
    border-radius: 20px;
    border: 1px solid rgba(10, 29, 55, 0.08);
    background: linear-gradient(150deg, rgba(10, 29, 55, 0.05) 0%, rgba(212, 160, 23, 0.08) 100%);
    padding: clamp(1.4rem, 3.2vw, 1.9rem);
    display: grid;
    gap: 0.65rem;
}

.about-value-card h3 {
    margin: 0;
    color: var(--brand-navy);
}

.about-value-card p {
    margin: 0;
    color: rgba(10, 29, 55, 0.7);
    line-height: 1.6;
}

.about-expertise {
    padding: clamp(3.2rem, 6.8vw, 4.8rem) 0;
    background: linear-gradient(135deg, rgba(10, 29, 55, 0.95) 0%, rgba(10, 29, 55, 0.88) 45%, rgba(5, 15, 30, 0.92) 100%);
    color: var(--brand-white);
}

.about-expertise-inner {
    display: grid;
    gap: clamp(2rem, 5vw, 3rem);
}

.about-expertise-header {
    display: grid;
    gap: 0.75rem;
    max-width: 720px;
}

.about-expertise-kicker {
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

.about-expertise-header h2 {
    margin: 0;
    font-size: clamp(2rem, 4.4vw, 2.8rem);
}

.about-expertise-header p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
}

.about-expertise-grid {
    display: grid;
    gap: clamp(1.1rem, 3vw, 1.8rem);
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.about-expertise-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    padding: clamp(1.5rem, 3.2vw, 2rem);
    display: grid;
    gap: 0.7rem;
    backdrop-filter: blur(8px);
}

.about-expertise-card h3 {
    margin: 0;
    color: var(--brand-white);
}

.about-expertise-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.65;
}

.about-leadership {
    background: linear-gradient(110deg, rgba(255, 255, 255, 0.96) 0%, rgba(240, 239, 235, 0.9) 100%);
    padding: clamp(3rem, 6.5vw, 4.6rem) 0;
}

.about-leadership-inner {
    display: grid;
    gap: clamp(2rem, 5vw, 3rem);
}

.about-leadership-header {
    display: grid;
    gap: 0.7rem;
    max-width: 720px;
}

.about-leadership-kicker {
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(10, 29, 55, 0.55);
}

.about-leadership-header h2 {
    margin: 0;
    font-size: clamp(1.9rem, 4.1vw, 2.6rem);
    color: var(--brand-navy);
}

.about-leadership-header p {
    margin: 0;
    color: rgba(10, 29, 55, 0.7);
    line-height: 1.65;
}

.about-leadership-grid {
    display: grid;
    gap: clamp(1.2rem, 3.4vw, 2rem);
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.about-leader-card {
    background: #ffffff;
    border: 1px solid rgba(10, 29, 55, 0.08);
    border-radius: 26px;
    overflow: hidden;
    display: grid;
    grid-template-rows: auto 1fr;
    box-shadow: 0 22px 40px rgba(6, 14, 28, 0.12);
}

.about-leader-media {
    margin: 0;
    position: relative;
    padding-top: 68%;
    overflow: hidden;
}

.about-leader-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-leader-body {
    padding: 1.6rem;
    display: grid;
    gap: 0.5rem;
}

.about-leader-body h3 {
    margin: 0;
    color: var(--brand-navy);
}

.about-leader-role {
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--brand-gold);
}

.about-leader-bio {
    margin: 0;
    color: rgba(10, 29, 55, 0.68);
    line-height: 1.6;
}

.about-cta {
    background: #f0efeb;
    padding: clamp(2.8rem, 6vw, 4rem) 0 clamp(3.4rem, 6.5vw, 4.6rem);
}

.about-cta-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: clamp(1.8rem, 4vw, 2.4rem) clamp(1.8rem, 4vw, 2.6rem);
    background: linear-gradient(140deg, rgba(10, 29, 55, 0.95) 0%, rgba(14, 36, 66, 0.92) 100%);
    border-radius: 28px;
    border: 1px solid rgba(10, 29, 55, 0.12);
    box-shadow: 0 30px 60px rgba(6, 14, 28, 0.18);
    color: var(--brand-white);
}

.about-cta-meta {
    max-width: 600px;
    display: grid;
    gap: 0.6rem;
}

.about-cta-meta h2 {
    margin: 0;
    font-size: clamp(1.85rem, 3.8vw, 2.4rem);
}

.about-cta-meta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
}

.about-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.9rem;
    border-radius: 999px;
    background: linear-gradient(120deg, var(--brand-gold), #f0c76a);
    color: var(--brand-navy);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 18px 32px rgba(212, 160, 23, 0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-cta-button:hover,
.about-cta-button:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 24px 40px rgba(212, 160, 23, 0.35);
}

@media (max-width: 900px) {
    .about-story-grid {
        grid-template-columns: 1fr;
    }

    .about-showcase-grid {
        grid-template-columns: 1fr;
    }

    .about-showcase-visual {
        grid-row: auto;
    }
}

@media (max-width: 720px) {
    .about-hero-inner {
        grid-template-columns: 1fr;
    }

    .about-hero-media-frame {
        transform: none;
    }

    .about-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 560px) {
    .about-hero-stats {
        grid-template-columns: 1fr;
    }
}

footer {
    background: #08172b;
    color: #d0d6dd;
    padding: 2.5rem 0;
    margin-top: 3rem;
}

footer .credits {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
}
